home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 090 / dsub.arc / DSUB.DOC < prev   
Text File  |  1987-05-20  |  1KB  |  35 lines

  1. DSUB v1.0
  2. (c) Copyright 1987 APLogica, Inc..  All rights reserved.
  3.  
  4. Syntax:  DSUB [/s] filespec[.exe]
  5. where:     /s        requests a BUILDLIB script to be built
  6.      filespec   is a drive/path/file specification
  7.             of a QuickBasic userlibrary
  8.  
  9. DSUB is a program that lists the Quickbasic SUBprograms found in the specified
  10. userlibrary file.  It uses an empirical method that seems to work well; there
  11. are no guarantees though.  A errorlevel of one will be set on any error.
  12.  
  13. Ex:     To list the subprograms in USERLIB.EXE:
  14.      DSUB userlib.exe     or
  15.      DSUB userlib
  16.  
  17. -----------------------------------------------------------------------------
  18.  
  19. This program searches for QB subprograms within a user library.  The time to
  20. search varies depending on the size of the library.  The module names found
  21. are written to standard output (can be redirected or piped).  When the '/s'
  22. switch is set, a BUILDLIB compatible script will be generated instead of
  23. just a list.  This script can be redirected as input to the BUILDLIB program:
  24.  
  25.     DSUB /s userlib >userlib.scr
  26.     BUILDLIB <userlib.scr
  27.         or
  28.     DSUB /s userlib | BUILDLIB
  29.  
  30. This will recreate the 'userlib' user library with the QuickBasic subprograms
  31. contained in the original file.
  32.  
  33. Contact:  N. Shulgach - Compuserve [74435,276]
  34.  
  35.